-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.33 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
{
"name": "@exanubes/bitwise",
"version": "1.0.0",
"description": "",
"source": "src/index.html",
"targets": {
"dev": {
"distDir": "./dist"
}
},
"scripts": {
"start": "parcel",
"lint": "eslint src/**/*.{js,html} && stylelint src/**/*.css",
"lint:fix": "eslint src/**/*.{js,html} --fix && stylelint src/**/*.css --fix",
"format": "prettier --write \"src/**/*.{js,css,html}\"",
"format:check": "prettier --check \"src/**/*.{js,css,html}\"",
"check": "pnpm run format && pnpm run lint",
"build": "parcel build --public-url /bitwise/",
"test": "bun test"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.29.3",
"devDependencies": {
"@html-eslint/eslint-plugin": "^0.55.0",
"@html-eslint/parser": "^0.55.0",
"@types/bun": "^1.3.9",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-html": "^8.1.4",
"eslint-plugin-jsdoc": "^62.5.4",
"eslint-plugin-prettier": "^5.5.5",
"parcel": "^2.16.4",
"prettier": "^3.8.1",
"stylelint": "^17.3.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-standard": "^40.0.0",
"stylelint-prettier": "^5.0.3"
}
}