-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.6 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.6 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
{
"name": "@oxc-angular/vite",
"version": "0.0.14",
"description": "Oxc Angular Compiler Vite plugin",
"keywords": [
"angular",
"compiler",
"oxc",
"template"
],
"homepage": "https://github.com/voidzero-dev/oxc-angular-compiler",
"bugs": "https://github.com/voidzero-dev/oxc-angular-compiler/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/voidzero-dev/oxc-angular-compiler.git",
"directory": "napi/angular-compiler"
},
"files": [
"index.d.ts",
"index.js",
"dist/**/*"
],
"type": "module",
"typesVersions": {
"*": {
"build-optimizer": [
"./dist/angular-build-optimizer-plugin.d.ts"
],
"vite-plugin": [
"./dist/index.d.ts"
]
}
},
"imports": {
"#binding": {
"types": "./index.d.ts",
"default": "./index.js"
}
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./api": {
"types": "./index.d.ts",
"default": "./index.js"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"artifacts": "napi artifacts",
"build-dev": "oxnode build.ts --esm --platform --features allocator",
"build-test": "oxnode build.ts --esm --platform --features allocator,cross_file_elision && pnpm run build:ts",
"build": "pnpm run build:native && pnpm run build:ts",
"build:native": "pnpm run build-dev --release",
"build:ts": "tsc -p tsconfig.json",
"test": "vitest run --dir ./test",
"test:e2e": "playwright test --config=e2e/playwright.config.ts",
"preversion": "oxnode build.ts --platform --esm --features allocator && git add index.js index.d.ts",
"prepublishOnly": "napi pre-publish -t npm"
},
"dependencies": {
"obug": "^2.1.1"
},
"devDependencies": {
"@angular/compiler": "^21.2.2",
"@angular/compiler-cli": "^21.2.2",
"@napi-rs/cli": "catalog:",
"@oxc-node/cli": "catalog:",
"@playwright/test": "^1.58.0",
"@types/node": "catalog:",
"oxfmt": "catalog:",
"typescript": "catalog:",
"vite": "catalog:",
"vitest": "catalog:"
},
"peerDependencies": {
"vite": ">=8.0.0-beta.10"
},
"napi": {
"binaryName": "angular-compiler",
"packageName": "@oxc-angular/binding",
"targets": [
"aarch64-apple-darwin",
"aarch64-pc-windows-msvc",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"x86_64-apple-darwin",
"x86_64-pc-windows-msvc",
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl"
]
}
}