-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 964 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 964 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
{
"name": "@objectstack-starter/examples",
"version": "0.1.0",
"description": "ObjectStack Starter Template - Example applications and use cases",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"type-check": "tsc --noEmit",
"example:basic": "node dist/basic-example.js",
"example:ecommerce": "node dist/ecommerce-example.js",
"example:blog": "node dist/blog-example.js",
"example:crm": "node dist/crm-example.js",
"example:crm-comprehensive": "node dist/crm-comprehensive-example.js"
},
"dependencies": {
"@objectstack/spec": "^0.3.3",
"@objectstack-starter/core": "*"
},
"devDependencies": {
"@types/node": "^25.0.10",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"objectstack",
"examples",
"starter-template"
],
"license": "MIT"
}