-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.45 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
{
"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"
}
},
"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",
"check": "npm run check:temporal && npm run typecheck && npm run typecheck:examples && npm run lint && npm run format:check && npm test && npm run build"
},
"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"
}
}