-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.46 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
64
65
66
{
"name": "mokuji.js",
"version": "4.7.0",
"description": "A table of content JavaScript Library",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint --cache ./src/**/*.ts",
"prepare": "npm run build && husky"
},
"type": "module",
"main": "./dist/index.js",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"directories": {
"lib": "lib"
},
"files": [
"dist",
"LICENSE",
"package.json",
"README.md"
],
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix --cache",
"eslint --cache",
"prettier --write --cache"
],
"*.{ts,tsx}": [
"bash -c 'tsc --noEmit --skipLibCheck'"
]
},
"repository": {
"type": "git",
"url": "https://github.com/hiro0218/mokuji.js.git"
},
"keywords": [
"table of content",
"toc",
"contents",
"index"
],
"author": "hiro",
"license": "MIT",
"bugs": {
"url": "https://github.com/hiro0218/mokuji.js/issues"
},
"homepage": "https://github.com/hiro0218/mokuji.js",
"devDependencies": {
"@types/node": "~22.10.1",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-unicorn": "^47.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.4.1",
"tsup": "^8.3.5",
"typescript": "~5.7.3"
}
}