-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1006 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 1006 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "create-objectstack",
"version": "4.0.4",
"description": "Create a new ObjectStack project — npx create-objectstack",
"bin": {
"create-objectstack": "./bin/create-objectstack.js"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch"
},
"keywords": [
"objectstack",
"create",
"scaffold",
"cli"
],
"type": "module",
"author": "Steedos",
"license": "Apache-2.0",
"dependencies": {
"chalk": "^5.6.2",
"commander": "^14.0.3"
},
"devDependencies": {
"@types/node": "^25.6.0",
"tsup": "^8.5.1",
"typescript": "^6.0.3"
},
"repository": {
"type": "git",
"url": "https://github.com/objectstack-ai/framework.git",
"directory": "packages/create-objectstack"
},
"homepage": "https://objectstack.ai/docs",
"bugs": "https://github.com/objectstack-ai/framework/issues",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md"
],
"engines": {
"node": ">=18.0.0"
}
}