-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.89 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "pathtracer",
"moduleName": "PathTracer",
"version": "0.1.0",
"description": "",
"main": "build/commonjs/index.js",
"module": "build/es/index.js",
"scripts": {
"build": "rollup --config",
"build:wasm": "make build",
"build:docs": "typedoc --out ./docs/ ./src/",
"start": "rollup --config --watch",
"start:example": "http-server ./",
"docs": "typedoc --out ./docs/ ./src/ --watch",
"lint:prettier": "prettier \"./src/**/*.ts\"",
"lint:eslint": "eslint \"./src/**/*.ts\"",
"lint:fix": "prettier \"./src/**/*.ts\" --write & eslint \"./src/**/*.ts\" --fix"
},
"repository": {
"type": "git",
"url": "git+https://git.trap.jp/Hackathon21_Winter_10/Pathtracer.git"
},
"author": "Fogrexon,kegra,0214sh7",
"license": "MIT",
"bugs": {
"url": "https://git.trap.jp/Hackathon21_Winter_10/Pathtracer.git"
},
"homepage": "https://git.trap.jp/Hackathon21_Winter_10/Pathtracer/src/branch/main/README.md",
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.15.0",
"@babel/runtime": "^7.16.3",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.1.1",
"@rollup/plugin-typescript": "^8.2.5",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.1",
"postcss": "^8.3.6",
"prettier": "^2.5.1",
"rollup": "^2.56.2",
"rollup-plugin-base64": "^1.0.1",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.3.1",
"typedoc": "^0.22.10",
"typescript": "^4.3.5"
},
"dependencies": {
"@types/offscreencanvas": "^2019.6.4"
}
}