-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.52 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.52 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
{
"name": "@libar-dev/software-delivery-protocol",
"version": "0.0.0",
"description": "Libar Software Delivery Protocol — a typed, executable, self-validating meta-model of the software-delivery process: author Specs as code, derive one graph, check conformance and honesty.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/libar-dev/software-delivery-protocol.git"
},
"type": "module",
"files": [
"dist"
],
"bin": {
"sdp": "./dist/cli/sdp.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./runner": {
"types": "./dist/runner/index.d.ts",
"import": "./dist/runner/index.js"
},
"./vitest": {
"types": "./dist/adapters/vitest.d.ts",
"import": "./dist/adapters/vitest.js"
}
},
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit -p tsconfig.json",
"typecheck:examples": "tsc --noEmit -p tsconfig.examples.json",
"test": "node ./vitest-test.mjs",
"test:watch": "vitest",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check:temporal": "node ./check-temporal.mjs",
"generate:example": "node ./dist/cli/sdp.js build examples/checkout-v1",
"generate:self-hosting": "node ./dist/cli/sdp.js view . --exclude explorations --exclude examples --exclude test/fixtures/import/parity",
"check:self-hosting": "node ./dist/cli/sdp.js view . --exclude explorations --exclude examples --exclude test/fixtures/import/parity --check-clean",
"check:example": "node ./dist/cli/sdp.js view examples/checkout-v1 --check-clean",
"preflight": "node ./preflight.mjs",
"check": "npm run check:temporal && npm run lint && npm run format:check && npm run build && npm run generate:self-hosting && npm run generate:example && npm run typecheck && npm run typecheck:examples && npm test && npm run check:self-hosting && npm run check:example && npm run preflight"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/node": "^20.0.0",
"eslint": "^9.0.0",
"globals": "^15.0.0",
"prettier": "^3.0.0",
"tsup": "^8.0.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.0.0",
"vitest": "^2.0.0"
},
"peerDependencies": {
"vitest": ">=2"
},
"peerDependenciesMeta": {
"vitest": {
"optional": true
}
},
"dependencies": {
"ts-morph": "~28.0.0",
"yaml": "2.9.0"
}
}