-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
70 lines (70 loc) · 2.04 KB
/
package.json
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
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "vedajs",
"description": "Shader Art Framework",
"version": "0.17.0",
"author": "AMAGI <[email protected]>",
"bugs": "https://github.com/fand/vedajs/issues",
"dependencies": {
"@fand/gifuct-js": "^1.0.0",
"three": "0.135"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.1",
"@types/node": "^17.0.21",
"@types/offscreencanvas": "^2019.6.4",
"@types/three": "0.135",
"@types/webmidi": "2.0.6",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^7.0.0",
"lint-staged": "12.3.7",
"npm-run-all": "4.1.5",
"prettier": "^2.6.0",
"rollup": "^2.70.1",
"tslint-config-prettier": "1.18.0",
"tslint-plugin-prettier": "2.3.0",
"typescript": "^4.6.2"
},
"files": [
"README.md",
"package.json",
"lib"
],
"homepage": "https://veda.gl/vedajs",
"keywords": [
"GLSL",
"Shader",
"WebGL"
],
"license": "MIT",
"main": "lib/bundle.js",
"module": "lib/index.js",
"repository": "https://github.com/fand/vedajs",
"scripts": {
"build": "run-p build:ts build:rollup",
"build:ts": "tsc -d",
"build:rollup": "rollup -c",
"precommit": "lint-staged",
"prepublish": "npm run test && npm run build",
"test": "eslint src/**/*.ts",
"format": "tslint -c tslint.json --fix 'src/**/*.ts'",
"watch": "run-p watch:ts watch:rollup",
"watch:ts": "tsc -w",
"watch:rollup": "rollup -c -w",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"types": "lib/index.d.ts",
"lint-staged": {
"*.ts": [
"eslint --fix 'src/**/*.ts'"
],
"*.md": [
"prettier --write"
]
}
}