-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 879 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 879 Bytes
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
{
"name": "@c11/engine.swc-plugin-syntax",
"version": "1.0.0",
"description": "SWC plugin for processing engine type annotations",
"main": "target/wasm32-wasi/release/engine_swc_plugin_syntax.wasm",
"files": [
"target/wasm32-wasi/release/engine_swc_plugin_syntax.wasm",
"README.md",
"LICENSE"
],
"scripts": {
"build": "cargo build --target wasm32-wasi --release",
"test": "cargo test",
"prepublishOnly": "npm run build"
},
"keywords": [
"swc-plugin",
"engine",
"typescript",
"ast",
"transformation"
],
"author": "Code11 Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/code11/engine.git"
},
"bugs": {
"url": "https://github.com/code11/engine/issues"
},
"homepage": "https://github.com/code11/engine#readme",
"engines": {
"node": ">=16.0.0"
}
}