-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
73 lines (73 loc) · 1.96 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
{
"name": "three-csg-ts",
"version": "3.2.0",
"description": "CSG library for use with THREE.js",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/esm/index.d.ts",
"scripts": {
"start": "webpack serve --open --config example/webpack.config.js",
"test": "jest --config jestconfig.json",
"clean": "rimraf lib",
"build": "npm run clean && mkdir lib && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"lint": "eslint .",
"prepare": "npm run build && husky install",
"prepublishOnly": "npm test && npm run lint",
"release": "standard-version",
"prerelease": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samalexander/three-csg-ts.git"
},
"keywords": [
"three",
"threejs",
"three-js",
"csg",
"computational-solid-geometry"
],
"author": "Sam Alexander",
"license": "MIT",
"bugs": {
"url": "https://github.com/samalexander/three-csg-ts/issues"
},
"homepage": "https://github.com/samalexander/three-csg-ts#readme",
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^14.14.45",
"@types/three": "^0.164.1",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.3.6",
"husky": "^6.0.0",
"jest": "^27.0.4",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"prettier-plugin-organize-imports": "^2.0.0",
"rimraf": "^3.0.2",
"standard-version": "^9.3.0",
"three": "^0.164.1",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.3",
"typescript": "^4.2.4",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^4.2.1"
},
"peerDependencies": {
"@types/three": ">= 0.154.0",
"three": ">= 0.154.0"
},
"files": [
"lib/**/*"
],
"lint-staged": {
"*/**": [
"eslint --fix",
"prettier --write"
]
}
}