-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 1.17 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
{
"name": "abjadcalc",
"version": "0.1.0",
"description": "Calculate the numerical abjad value of Arabic or Persian text",
"homepage": "https://github.com/theodore-s-beers/abjadcalc#readme",
"bugs": {
"url": "https://github.com/theodore-s-beers/abjadcalc/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theodore-s-beers/abjadcalc.git"
},
"license": "MIT",
"author": "Theo Beers",
"type": "module",
"main": "index.html",
"scripts": {
"check": "tsc",
"compile-ime": "esbuild ts/index-ime.ts --bundle --minify --sourcemap --outfile=ime/index.min.js",
"compile-main": "esbuild ts/index-main.ts --bundle --minify --sourcemap --outfile=js/index.min.js",
"format": "prettier --write .",
"lint": "eslint --fix . && stylelint --fix css/styles-*.css",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/eslint__js": "^8.42.3",
"esbuild": "^0.24.0",
"eslint": "^9.16.0",
"prettier": "3.4.2",
"stylelint": "^16.11.0",
"stylelint-config-standard": "^36.0.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0"
}
}