-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.01 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
{
"name": "3d-transform-utils",
"version": "1.0.0",
"description": "",
"license": "ISC",
"author": "tangdaoyuan <[email protected]> (https://github.com/tangdaoyuan)",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"types"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "npm run clean && rollup -c",
"clean": "rimraf dist",
"test": "npm run build && jest",
"lint": "eslint ."
},
"devDependencies": {
"@rollup/plugin-typescript": "8.4.0",
"@suger-tdy/eslint-config": "1.1.9",
"@types/jest": "27.5.2",
"@types/node": "17.0.30",
"chalk": "5.0.1",
"eslint": "8.23.0",
"jest": "28.1.3",
"rimraf": "3.0.2",
"rollup": "2.78.1",
"ts-jest": "28.0.8",
"ts-node": "10.9.1",
"tslib": "2.4.0",
"typescript": "4.8.2"
}
}