forked from vatro/svelthree
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.28 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.28 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
{
"name": "svelthree",
"version": "0.119.1",
"description": "Svelte powered three.js development",
"svelte": "src/svelthree.js",
"types": "src/svelthree.d.ts",
"module": "dist/svelthree.mjs",
"main": "dist/svelthree.js",
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build",
"svelte-check": "svelte-check",
"local-tsc": "tsc",
"test": "echo 'No test specified' && exit 1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-typescript": "^5.0.2",
"prettier": "^2.0.5",
"rollup": "^2.23.0",
"rollup-plugin-svelte": "^5.2.3",
"rollup-plugin-terser": "^6.1.0",
"svelte": "^3.24.0",
"svelte-check": "^1.0.5",
"svelte-preprocess": "^4.0.9",
"tslib": "^2.0.0",
"typescript": "^3.9.7"
},
"dependencies": {
"svelthree-three": "git+https://github.com/vatro/svelthree-three.git#119-1"
},
"author": "Vatroslav Vrbanic",
"repository": {
"type": "git",
"url": "https://github.com/vatro/svelthree"
},
"homepage": "https://svelthree.dev",
"bugs": {
"url": "https://github.com/vatro/svelthree/issues"
},
"license": "MIT",
"keywords": [
"svelte",
"svelte.js",
"three",
"three.js",
"svelthree"
]
}