-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.59 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.59 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
{
"name": "tsarchi",
"version": "1.0.2",
"description": "TypeScript implementation of the Archi model",
"type": "module",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.mts"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"scripts": {
"prebuild": "node scripts/generate-index.js",
"build": "tsc --project tsconfig.json",
"example": "node ./dist/examples/sample01.mjs --input sample.archimate --output out.archimate",
"test": "vitest",
"compare": "node ./dist/tests/compare.js -i sample.archimate -o out.archimate",
"dev": "tsc --watch",
"lint": "oxlint --ignore-path .gitignore .",
"lintfix": "oxlint --fix --ignore-path .gitignore .",
"format": "oxfmt --check README.md LICENSE.md CHANGELOG.md",
"formatfix": "oxfmt README.md LICENSE.md CHANGELOG.md",
"prepublishOnly": "npm run build && npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/localgod/tsarchi"
},
"keywords": [
"typescript",
"architecture",
"visualization"
],
"author": "Johannes Skov Frandsen",
"license": "MIT",
"bugs": {
"url": "https://github.com/localgod/tsarchi/issues"
},
"homepage": "https://github.com/localgod/tsarchi",
"devDependencies": {
"@types/json-schema": "^7.0.15",
"@types/node": "^25.0.2",
"oxfmt": "^0.45.0",
"oxlint": "^1.50.0",
"vitest": "^4.0.3",
"typescript": "^6.0.2"
},
"dependencies": {
"chalk": "^5.4.1",
"fast-xml-parser": "^5.2.3"
}
}