-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 1.93 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@dotdo/nouns",
"version": "0.1.0",
"description": "Digital Object definitions for business entities",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./people": {
"types": "./dist/people.d.ts",
"import": "./dist/people.js"
},
"./business": {
"types": "./dist/business.d.ts",
"import": "./dist/business.js"
},
"./products": {
"types": "./dist/products.d.ts",
"import": "./dist/products.js"
},
"./software": {
"types": "./dist/software.d.ts",
"import": "./dist/software.js"
},
"./agents": {
"types": "./dist/agents.d.ts",
"import": "./dist/agents.js"
},
"./market": {
"types": "./dist/market.d.ts",
"import": "./dist/market.js"
},
"./goals": {
"types": "./dist/goals.d.ts",
"import": "./dist/goals.js"
},
"./process": {
"types": "./dist/process.d.ts",
"import": "./dist/process.js"
},
"./strategy": {
"types": "./dist/strategy.d.ts",
"import": "./dist/strategy.js"
},
"./content": {
"types": "./dist/content.d.ts",
"import": "./dist/content.js"
},
"./experiments": {
"types": "./dist/experiments.d.ts",
"import": "./dist/experiments.js"
},
"./integration": {
"types": "./dist/integration.d.ts",
"import": "./dist/integration.js"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist"
},
"devDependencies": {
"@types/node": "^25.1.0",
"typescript": "^5.7.0"
},
"keywords": [
"digital-objects",
"business",
"startup",
"saas",
"agents",
"schema",
"ai-primitives"
],
"author": "",
"license": "MIT"
}