-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.67 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.67 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
{
"name": "@newtype-ai/nit",
"version": "0.6.33",
"description": "Version control for agent cards",
"type": "module",
"bin": {
"nit": "dist/cli.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"scripts"
],
"scripts": {
"build": "tsup",
"test": "npm run build && node --test tests/*.test.mjs",
"test:init-count": "bash tests/harness/init-count-smoke.sh",
"test:runtime": "npm run build && node tests/harness/runtime-folder-flow-harness.mjs",
"test:newtype": "npm run build && node tests/harness/newtype-worker-flow-harness.mjs",
"test:flow": "npm run test:init-count && npm run test:runtime",
"test:flow:scale": "npm run build && node tests/harness/identity-flow-harness.mjs --agents 1000 --full-agents 25 --concurrency 16",
"check:skill-version": "node scripts/check-skill-version.js",
"smoke:package": "bash scripts/package-smoke.sh",
"release:check": "bash scripts/release-check.sh",
"prepublishOnly": "tsup",
"postinstall": "node scripts/postinstall.js"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"agent-card",
"version-control",
"nit",
"identity",
"a2a",
"ed25519"
],
"author": "newtype-ai",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/newtype-ai/nit.git"
},
"homepage": "https://github.com/newtype-ai/nit",
"devDependencies": {
"@noble/curves": "^2.0.0",
"@noble/hashes": "^2.0.1",
"@types/node": "^25.3.0",
"tsup": "^8.0.0",
"typescript": "^5.0.0"
}
}