This repository has been archived by the owner on May 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
57 lines (57 loc) · 1.76 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
{
"name": "vugel",
"description": "Vue3 webgl renderer",
"version": "1.0.20",
"author": "Bas van Meurs, Robbin Baauw, Planning.nl",
"email": "[email protected]",
"bugs": {
"url": "https://github.com/Planning-nl/vugel/issues",
"email": "[email protected]"
},
"dependencies": {
"tree2d": "^1.0.14"
},
"devDependencies": {
"@planning.nl/eslint-config": "^1.0.6",
"@planning.nl/webpack-config": "^1.0.4",
"eslint": "^6.8.0",
"ts-loader": "^6.2.2",
"typescript": "3.8.3",
"vue": "^3.0.0-rc.2"
},
"files": [
"esm/**",
"cjs/**",
"dist/**",
"src/**",
"types/**"
],
"homepage": "https://github.com/Planning-nl/vugel#readme",
"keywords": [],
"license": "apache",
"main": "cjs/index.js",
"module": "esm/index.js",
"jsdelivr": "dist/vugel.js",
"unpkg": "dist/vugel.js",
"peerDependencies": {
"vue": "^3.0.0-rc.2"
},
"repository": "github:Planning-nl/vugel",
"scripts": {
"build": "npm run build:cjs & npm run build:esm & npm run build:umd",
"watch:cjs": "tsc --watch --module commonjs --outDir cjs",
"build:cjs": "tsc --module commonjs --outDir cjs",
"watch:esm": "tsc --watch --module es2015 --outDir esm",
"build:esm": "tsc --module es2015 --outDir esm",
"build:umd": "NODE_ENV=production webpack --progress --display-error-details",
"lint": "eslint -c .eslintrc.js 'src/**/*.ts'",
"lint:fix": "eslint --fix -c .eslintrc.js **/*.ts",
"prepare": "npm run build",
"prepublish": "npm run build",
"version": "npm run lint"
},
"types": "types/index.d.ts",
"engines": {
"node": ">=8.0.0"
}
}