-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 916 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 916 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
{
"name": "adk-lib",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev-experimental": "npm run compile --workspace=experimental && regolith run dev-experimental",
"dev-rc": "npm run compile --workspace=rc && regolith run dev-rc",
"dev-stable": "npm run compile --workspace=stable && regolith run dev-stable",
"build-experimental": "npm run compile --workspace=experimental && regolith run build-experimental",
"build-rc": "npm run compile --workspace=rc && regolith run build-rc",
"build-stable": "npm run compile --workspace=stable && regolith run build-stable"
},
"workspaces": [
"experimental",
"rc",
"stable"
],
"keywords": [],
"author": "SmokeyStack",
"license": "GPL-3.0-only",
"description": "",
"devDependencies": {
"tsup": "^8.3.5",
"typescript": "^5.8.2"
}
}