-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.98 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.98 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
{
"name": "webasmjs",
"version": "0.2.0",
"description": "TypeScript WebAssembly bytecode emitter and module builder",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"generate": "npx tsx generator/index.ts",
"build": "tsc --build",
"clean": "tsc --build --clean",
"clean:build": "rm -rf build",
"test": "jest",
"test:ci": "jest --ci --coverage --reporters=default --reporters=jest-junit",
"test:coverage": "jest --coverage",
"lint": "eslint src/ playground/ tests/",
"lint:fix": "eslint src/ playground/ tests/ --fix",
"format": "prettier --write 'src/**/*.ts' 'playground/**/*.ts' 'tests/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts' 'playground/**/*.ts' 'tests/**/*.ts'",
"build:release": "npm run clean:build && npm run build && npm run test:ci",
"build:playground": "npm run build && npx tsx playground/build.ts",
"playground": "npx tsx playground/build.ts --serve",
"prepare": "husky"
},
"jest-junit": {
"outputDirectory": "build/test-results",
"outputName": "junit.xml"
},
"bugs": {
"url": "https://github.com/DevNamedZed/webasmjs/issues",
"email": "devnamedzed@gmail.com"
},
"homepage": "https://github.com/DevNamedZed/webasmjs#readme",
"author": {
"name": "",
"email": "devnamedzed@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DevNamedZed/webasmjs"
},
"keywords": [
"webasm",
"wasm",
"emit",
"codegen",
"webassembly",
"typescript"
],
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"esbuild": "^0.27.3",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "^3.8.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.0"
}
}