generated from SolalDR/rollup-typescript-starter-lib
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.67 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.67 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
{
"name": "three-msdf-text",
"repository": "SolalDR/three-msdf-text",
"version": "1.0.0",
"main": "build/index.js",
"module": "build/index.esm.js",
"browser": "build/index.umd.js",
"types": "build/index.d.ts",
"devDependencies": {
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.1.0",
"@tsconfig/recommended": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "7.7.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"prettier": "^2.8.0",
"rollup": "^2.77.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-external-globals": "^0.6.1",
"rollup-plugin-filesize": "^9.1.0",
"rollup-plugin-glslify": "^1.3.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-serve": "^2.0.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^3.0.2",
"typedoc": "^0.23.14",
"typescript": "^4.1.3",
"fs-extra": "^10.1.0"
},
"peerDependencies": {
"@types/three": "0.140.0",
"three": "^0.140.0"
},
"scripts": {
"commit": "npm run format && cz",
"format": "prettier --write \"src/**/*.ts\"",
"build": "rollup -c && npm run docs",
"dev": "rollup -c -w",
"docs": "typedoc src/index.ts"
},
"files": [
"build"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}