-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.56 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.56 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
{
"name": "@t-ruby/wasm",
"version": "0.0.46-patch2",
"description": "T-Ruby compiler running in WebAssembly for browser environments",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"browser": "./dist/index.js",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"README.md",
"README.ko.md"
],
"scripts": {
"build": "tsup",
"build:wasm": "node scripts/build-wasm.mjs",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint src",
"test": "vitest",
"test:run": "vitest run",
"prepublishOnly": "npm run build"
},
"keywords": [
"t-ruby",
"ruby",
"typescript",
"wasm",
"webassembly",
"type-checker",
"compiler"
],
"author": "Y. Fred Kim <yhkks1038@gmail.com>",
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "https://github.com/type-ruby/t-ruby-wasm.git"
},
"homepage": "https://type-ruby.github.io",
"bugs": {
"url": "https://github.com/type-ruby/t-ruby-wasm/issues"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/node": "^22.10.7",
"eslint": "^9.18.0",
"tsup": "^8.3.5",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0",
"vitest": "^3.0.2"
},
"dependencies": {
"@ruby/3.4-wasm-wasi": "^2.8.1",
"@ruby/wasm-wasi": "^2.8.1"
},
"t-ruby": {
"minVersion": "0.0.46"
}
}