-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 797 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 797 Bytes
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
{
"name": "@solworks/application-registry",
"version": "0.0.59",
"description": "SolWorks Application Registry",
"main": "build/index.js",
"types": "build/index.d.ts",
"repository": "https://github.com/SolWorks-Dev/application-registry",
"author": "Zhe SolWorks",
"files": [
"/build"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf ./build",
"nobuild": "ts-node src/build.ts",
"build": "npm run clean && ts-node src/build.ts && npx tsc",
"build::publish::patch": "npm run build && npm version patch && npm publish --access=public"
},
"keywords": [],
"license": "Affero GPL",
"devDependencies": {
"@types/node": "^18.0.6",
"typescript": "^4.7.4"
},
"dependencies": {
"toml": "^3.0.0"
}
}