-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.37 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
{
"name": "@havesomecode/runtime-impact-graph",
"version": "0.1.0",
"description": "Deterministic semantic dependency graphs from observed Node.js execution.",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Havesomecode/runtime-impact-graph.git"
},
"bugs": {
"url": "https://github.com/Havesomecode/runtime-impact-graph/issues"
},
"homepage": "https://github.com/Havesomecode/runtime-impact-graph#readme",
"type": "module",
"sideEffects": false,
"engines": {
"node": ">=22.15 <23 || >=24 <25"
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./json": {
"types": "./dist/types/format/json.d.ts",
"import": "./dist/esm/format/json.js",
"require": "./dist/cjs/format/json.js"
},
"./dot": {
"types": "./dist/types/format/dot.d.ts",
"import": "./dist/esm/format/dot.js",
"require": "./dist/cjs/format/dot.js"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"clean": "node scripts/clean.mjs",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:types": "tsc -p tsconfig.types.json",
"build": "npm run clean && npm run build:esm && npm run build:cjs && npm run build:types && node scripts/write-cjs-package.mjs",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "tsx --test test/**/*.test.ts",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"example": "tsx examples/neutral-app.ts --write",
"example:check": "tsx examples/neutral-app.ts --check",
"site:build": "node scripts/build-site.mjs",
"site:check": "npm run site:build && node scripts/check-site.mjs",
"site:preview": "npm run site:build && node scripts/preview-site.mjs",
"benchmark": "node bench/run.mjs",
"verify": "npm run format:check && npm run lint && npm run typecheck && npm test && npm run example:check && npm run build && npm run site:check"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/node": "22.20.0",
"eslint": "10.9.1",
"globals": "17.11.0",
"prettier": "3.9.6",
"tsx": "4.23.12",
"typescript": "5.9.3",
"typescript-eslint": "8.68.0"
}
}