-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 934 Bytes
/
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
{
"name": "motionbuilder-socket",
"version": "2.0.4",
"description": "motionbuilder-socket",
"keywords": [
"motionbuilder",
"autodesk"
],
"author": {
"name": "Nils Soderman"
},
"license": "MIT-0",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/nils-soderman/motionbuilder-socket.git"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsup src/index.ts --format cjs,esm --dts --minify --clean",
"lint": "tsc",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.15",
"ts-jest": "^29.2.4",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}