forked from Alchemist0823/three.quarks
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.68 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "three.quarks",
"version": "0.10.6",
"description": "A General-Purpose Particle System for three.js",
"type": "module",
"types": "./dist/types/index.d.ts",
"main": "./dist/three.quarks.js",
"module": "./dist/three.quarks.esm.js",
"browser_NO_NPM": "./dist/three.quarks.min.js",
"files": [
"dist"
],
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "yarn run type-check -- --watch",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "rollup -c",
"build:production": "yarn run build:types && cross-env NODE_ENV=production yarn run build:js && cpx ./dist/three.quarks.esm.js ./examples/js/ && replace-in-file \"'three';\" \"'./three.module.js';\" examples/js/three.quarks.esm.js",
"build": "yarn run build:production",
"lint": "eslint . --ext .ts",
"prepublishOnly": "yarn run build:production",
"deploy": "gh-pages -d examples",
"docs": "typedoc",
"example": "http-server ./examples -c-1 -p 8000",
"test": "jest",
"test:coverage": "jest --coverage",
"test:prod": "yarn run test -- --no-cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Alchemist0823/three.quarks.git"
},
"keywords": [
"particle",
"library",
"3d",
"game",
"performance",
"math"
],
"author": "Alchemist0823 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Alchemist0823/three.quarks/issues"
},
"homepage": "https://github.com/Alchemist0823/three.quarks#readme",
"dependencies": {},
"peerDependencies": {
"three": ">=0.153.0"
},
"devDependencies": {
"@babel/core": "^7.22.11",
"@babel/plugin-transform-class-properties": "^7.22.5",
"@babel/plugin-transform-object-rest-spread": "^7.22.15",
"@babel/plugin-transform-typescript": "^7.22.15",
"@babel/preset-env": "^7.22.14",
"@babel/preset-typescript": "^7.22.11",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.3",
"@types/jest": "^29.5.3",
"@types/node": "^16.18.38",
"@types/three": "^0.153.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"cpx": "^1.5.0",
"cross-env": "^7.0.3",
"eslint": "^8.44.0",
"eslint-plugin-unused-imports": "^3.0.0",
"gh-pages": "^5.0.0",
"http-server": "^14.1.1",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"prettier": "^3.0.0",
"replace-in-file": "^7.0.1",
"rollup": "^3.28.1",
"three": "^0.153.0",
"ts-jest": "^29.1.1",
"tslib": "^2.6.0",
"typedoc": "^0.24.8",
"typescript": "^4.9.5"
}
}