-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.18 KB
/
package.json
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
{
"name": "@cm2ml/ir-post-processor",
"type": "module",
"version": "1.0.0",
"author": {
"name": "Jan Müller",
"url": "https://github.com/DerYeger"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/borkdominik/CM2ML.git",
"directory": "packages/framework/ir-post-processor"
},
"bugs": {
"url": "https://github.com/borkdominik/CM2ML/issues"
},
"sideEffects": false,
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.mts",
"default": "./dist/index.mjs"
}
}
},
"types": "dist/types/index.d.mts",
"files": [
"dist/*"
],
"scripts": {
"build": "vite build",
"check:publish": "publint run --strict",
"check:tsc": "tsc",
"dev": "vite build --watch",
"lint": "yeger-lint",
"test": "vitest"
},
"dependencies": {
"@cm2ml/ir": "workspace:*",
"@cm2ml/plugin": "workspace:*",
"@cm2ml/utils": "workspace:*",
"@yeger/streams": "1.2.2"
},
"devDependencies": {
"@cm2ml/tsconfig": "workspace:*",
"typescript": "5.6.3",
"vite": "5.4.10",
"vite-plugin-lib": "2.1.3"
},
"publishConfig": {
"access": "public"
}
}