-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1006 Bytes
/
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
{
"name": "cesil",
"version": "1.0.7",
"description": "CESIL Interpreter",
"license": "MIT",
"author": "Yorick Phoenix",
"main": "src/cesil.js",
"type": "module",
"devDependencies": {
"@biomejs/biome": "1.6.4",
"@eslint/config-inspector": "^0.4.6",
"eslint": "^9.0.0",
"eslint-plugin-jsdoc": "^48.2.3",
"eslint-plugin-new-with-error": "^5.0.0",
"eslint-plugin-no-use-extend-native": "^0.5.0",
"oxlint": "^0.2.17"
},
"scripts": {
"oxlint": "oxlint -D all -A restriction -A pedantic -A style -A nursery -A prefer-add-event-listener -A no-document-cookie -A no-new-array --ignore-pattern=**/node_modules/**",
"cesil": "node src/cesilCLI.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yphoenix/cesil.git"
},
"keywords": [
"cesil"
],
"bugs": {
"url": "https://github.com/yphoenix/cesil/issues"
},
"homepage": "https://github.com/yphoenix/cesil#readme",
"bin": {
"cesil": "src/cesilCLI.js"
}
}