-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.63 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
{
"name": "@deepnest/geometryutil",
"version": "0.0.7",
"publishConfig": {
"access": "public"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"default": "./dist/esm/index.js"
}
},
"scripts": {
"compile": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.types.json",
"build:clean": "shx rm -rf ./build",
"build": "npm-run-all build:clean compile && node ./scripts/prepare-package-json.js",
"start": "tsc --watch",
"format": "prettier --write .",
"lint": "eslint . --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deepnest-next/node-geometryutil.git"
},
"keywords": [
"deepnest",
"deepnest-next",
"worker",
"backend",
"worker-pool"
],
"author": "Josef Fröhle",
"license": "MIT",
"bugs": {
"url": "https://github.com/deepnest-next/node-geometryutil/issues"
},
"homepage": "https://www.deepnest.net",
"funding": [
{
"type": "patreon",
"url": "https://patreon.com/deepnest_next"
}
],
"devDependencies": {
"@alcalzone/esm2cjs": "^1.4.1",
"@eslint/js": "^9.17.0",
"@types/node": "^22.10.2",
"eslint": "^9.17.0",
"npm-run-all": "^4.1.5",
"tsc-alias": "^1.8.10",
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1",
"shx": "0.3.4"
}
}