-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.49 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.49 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
{
"name": "@ioc/compiler",
"version": "0.1.0",
"description": "Intent-Oriented Computing - Native LLVM Compiler",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"ioc": "./dist/cli/ioc.js"
},
"scripts": {
"build": "tsup",
"dev": "tsx watch src/index.ts",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --run --coverage",
"typecheck": "tsc --noEmit",
"typecheck:strict": "tsc --noEmit --strict --noUnusedLocals --noUnusedParameters",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"audit:security": "npm audit --audit-level=moderate",
"validate": "npm run typecheck && npm run lint && npm run format:check && npm test -- --run",
"precommit": "npm run validate && npm run build"
},
"keywords": [
"compiler",
"llvm",
"intent-oriented",
"optimization",
"jit"
],
"author": "",
"license": "MIT",
"private": true,
"devDependencies": {
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"@vitest/coverage-v8": "^2.1.9",
"eslint": "^9.17.0",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"dependencies": {
"wabt": "^1.0.38"
},
"engines": {
"node": ">=18.0.0"
}
}