-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.25 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.25 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
{
"name": "nativejs",
"version": "0.0.8",
"description": "Write native JavaScript code.",
"private": true,
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/chai": "^4.3.20",
"@types/mocha": "^10.0.10",
"@types/node": "^20.17.30",
"chai": "^4.5.0",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.2",
"mocha": "^11.7.5",
"prettier": "^2.8.8",
"rimraf": "^5.0.10",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.26.0",
"yarn": "^1.22.22"
},
"scripts": {
"clean": "rimraf yarn.lock packages/**/node_modules packages/*/**/*.js packages/**/*.js.map",
"prepare": "tsc",
"format": "prettier --write './packages/**/*.ts'",
"lint": "eslint .",
"test": "yarn --cwd packages/nativejs-compiler test"
},
"repository": {
"type": "git",
"url": "git://github.com/brunobasto/native.js.git"
},
"author": "Bruno Basto",
"license": "ISC",
"workspaces": [
"packages/nativejs-compiler",
"packages/nativejs-ir",
"packages/nativejs-backend-c",
"packages/nativejs-runtime-core",
"packages/nativejs-runtime-c",
"packages/nativejs-preset-arduino",
"packages/nativejs-preset-rp2040",
"packages/nativejs-preset-standard"
]
}