-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
63 lines (63 loc) · 1.79 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
{
"name": "svelthree",
"description": "Create three.js content with Svelte components.",
"version": "1.0.0-next.0.98",
"author": "Vatroslav Vrbanic <[email protected]> (https://svelthree.dev)",
"license": "MIT",
"scripts": {
"dev": "vite dev",
"build": "svelte-kit sync && svelte-package",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"lint : quiet": "prettier --check . && eslint --quiet .",
"format": "prettier --write .",
"prebuild": "npm run format && npm run check && npm run lint && node ./prebuild.js",
"postbuild": "node ./postprocess_package.js && rimraf src/lib/acc"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^1.0.0",
"@sveltejs/kit": "^1.0.1",
"@sveltejs/package": "^1.0.1",
"@types/three": "0.125.x - 0.147.x",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^4.0.0",
"fs-extra": "^11.1.0",
"prettier": "^2.8.1",
"prettier-plugin-svelte": "^2.9.0",
"svelte": "^3.54.0",
"svelte-check": "^2.10.2",
"svelte-preprocess": "^5.0.0",
"three": "0.147.x",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"vite": "^4.0.2"
},
"peerDependencies": {
"svelte": "^3.54.0",
"three": "0.125.x - 0.147.x"
},
"optionalDependencies": {
"@types/three": "0.125.x - 0.147.x"
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/vatro/svelthree"
},
"homepage": "https://svelthree.dev",
"bugs": {
"url": "https://github.com/vatro/svelthree/issues"
},
"keywords": [
"svelte",
"svelte.js",
"three",
"three.js",
"svelthree",
"svelte-accmod"
]
}