-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) 路 3.61 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) 路 3.61 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@-xun/project-graph",
"version": "3.2.2",
"description": "The project analysis utilities available to consumers of the @-xun/project package",
"keywords": [],
"homepage": "https://github.com/Xunnamius/project-utils/tree/main/packages/graph#readme",
"bugs": {
"url": "https://github.com/Xunnamius/project-utils/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Xunnamius/project-utils.git"
},
"license": "MIT",
"author": "Xunnamius",
"sideEffects": false,
"type": "commonjs",
"exports": {
".": {
"types": "./dist/packages/graph/src/index.d.ts",
"default": "./dist/packages/graph/src/index.js"
},
"./error": {
"types": "./dist/packages/graph/src/error.d.ts",
"default": "./dist/packages/graph/src/error.js"
},
"./package": "./package.json",
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"index": [
"dist/packages/graph/src/index.d.ts"
],
"error": [
"dist/packages/graph/src/error.d.ts"
],
"package": [
"package.json"
]
}
},
"files": [
"/dist",
"/LICENSE",
"/package.json",
"/README.md"
],
"scripts": {
"build": "npm run build:dist --",
"build:changelog": "symbiote build changelog --env NODE_NO_WARNINGS=1",
"build:dist": "symbiote build distributables --env NODE_NO_WARNINGS=1 --multiversal",
"build:docs": "symbiote build docs --env NODE_NO_WARNINGS=1",
"clean": "symbiote clean --env NODE_NO_WARNINGS=1",
"format": "symbiote format --env NODE_NO_WARNINGS=1 --hush",
"info": "symbiote project info --env NODE_NO_WARNINGS=1",
"lint": "npm run lint:package --",
"lint:package": "symbiote lint --env NODE_NO_WARNINGS=1 --hush",
"lint:packages": "symbiote lint --env NODE_NO_WARNINGS=1 --hush --scope unlimited",
"lint:project": "symbiote project lint --env NODE_NO_WARNINGS=1",
"list-tasks": "symbiote list-tasks --env NODE_NO_WARNINGS=1 --scope this-package",
"release": "symbiote release --env NODE_NO_WARNINGS=1",
"start": "symbiote start --env NODE_NO_WARNINGS=1 --",
"test": "npm run test:package:unit --",
"test:package:all": "symbiote test --env NODE_NO_WARNINGS=1 --tests all-local --coverage",
"test:package:e2e": "symbiote test --env NODE_NO_WARNINGS=1 --tests e2e-local",
"test:package:integration": "symbiote test --env NODE_NO_WARNINGS=1 --tests integration",
"test:package:unit": "symbiote test --env NODE_NO_WARNINGS=1 --tests unit type",
"test:packages:all": "symbiote test --env NODE_NO_WARNINGS=1 --tests all-local --scope unlimited --coverage"
},
"dependencies": {
"@-xun/error": "^1.1.6",
"@-xun/fs": "^2.0.0",
"@-xun/memoize": "^1.1.0",
"@-xun/project-fs": "^2.0.5",
"@-xun/project-types": "^2.0.1",
"@babel/core": "^7.28.0",
"@babel/plugin-syntax-typescript": "^7.27.1",
"@types/semver": "^7.7.0",
"babel-plugin-metadata-accumulator": "^1.0.1",
"browserslist": "^4.25.1",
"core-js": "^3.44.0",
"escape-string-regexp~4": "npm:escape-string-regexp@^4.0.0",
"find-up~5": "npm:find-up@^5.0.0",
"glob": "^11.0.3",
"glob-gitignore": "^1.0.15",
"rejoinder": "^2.0.2",
"semver": "^7.7.2",
"toss-expression": "^0.1.2",
"type-fest": "^4.41.0",
"validate-npm-package-name": "^6.0.1"
},
"devDependencies": {
"@-xun/common-dummies": "^2.1.2",
"@-xun/run": "^2.0.0",
"@types/validate-npm-package-name": "^4.0.2"
},
"engines": {
"node": "^20.18.0 || ^22.12.0 || >=23.3.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}