-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.25 KB
/
package.json
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
{
"name": "uxn.wasm",
"description": "WebAssembly implementation of the Uxn virtual machine",
"author": "Remko Tronçon <[email protected]>",
"version": "0.9.0",
"repository": "github:remko/uxn.wasm",
"keywords": [
"uxn",
"uxntal",
"webassembly",
"virtual-machine",
"emulator"
],
"license": "MIT",
"devDependencies": {
"chai": "^4.3.6",
"esbuild": "^0.19.5",
"eslint": "^8.13.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.2.2",
"prettier": "^2.6.2"
},
"type": "module",
"main": "dist/uxn.esm.js",
"exports": {
".": "./dist/uxn.esm.js",
"./util": "./dist/util.esm.js"
},
"files": [
"dist/uxn.esm.js",
"dist/uxn.esm.js.map",
"dist/util.esm.js",
"dist/util.esm.js.map"
],
"scripts": {
"prepare": "scripts/build.js"
},
"eslintConfig": {
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended"
],
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": "error"
},
"ignorePatterns": [
"public/uxn-wasm/dist",
"build/",
"dist/",
"src/benchmarks/uxn5.js"
]
}
}