-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
51 lines (51 loc) · 1.35 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
{
"name": "@progfay/scrapbox-parser",
"version": "9.2.0",
"type": "module",
"description": "parse Scrapbox notation to JavaScript Object",
"files": ["out"],
"main": "./out/index.cjs",
"module": "./out/index.mjs",
"types": "./out/index.d.ts",
"unpkg": "./out/scrapbox-parser.umd.js",
"exports": {
"types": "./out/index.d.ts",
"import": "./out/index.mjs",
"require": "./out/index.cjs"
},
"scripts": {
"prebuild": "node -e 'fs.rmSync(`out`, {recursive:true, force:true})'",
"build": "run-p build:*",
"build:types": "tsc -p ./tsconfig.json",
"build:vite": "vite build",
"prepare": "npm run build",
"test": "vitest run --coverage",
"test:update": "vitest run -u",
"lint": "run-p lint:*",
"lint:biome": "biome check .",
"lint:tsc": "tsc -p ./tsconfig.lint.json",
"format": "biome check --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/progfay/scrapbox-parser.git"
},
"keywords": ["scrapbox", "parser"],
"author": "progfay",
"license": "MIT",
"bugs": {
"url": "https://github.com/progfay/scrapbox-parser/issues"
},
"homepage": "https://github.com/progfay/scrapbox-parser#readme",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@vitest/coverage-v8": "3.0.4",
"npm-run-all2": "7.0.2",
"typescript": "5.7.3",
"vite": "6.0.11",
"vitest": "3.0.4"
},
"publishConfig": {
"access": "public"
}
}