-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.97 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
{
"name": "novel-support.js",
"description": "jQuery非依存の、小説投稿サイト代替記号の変換ライブラリ",
"version": "1.1.1",
"main": "./dist/js/index.js",
"types": "./dist/js/index.d.ts",
"unpkg": "./dist/js/novel-support.js",
"jsdelivr": "./dist/js/novel-support.js",
"files": [
"dist",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"build:npm": "tsc -p ./tsconfig.build.json",
"build:cdn": "babel --compact=true ./src/index.ts -o ./dist/js/novel-support.js --plugins babel-plugin-transform-remove-export",
"build:sass": "sass ./src/_novel-support.scss ./dist/css/novel-support.css --style=compressed && pnpm cpx && pnpm autoprefix",
"build": "run-s build:*",
"cpx": "cpx ./src/_novel-support.scss ./dist/css/",
"autoprefix": "postcss --use autoprefixer --no-map -o ./dist/css/novel-support.css ./dist/css/novel-support.css",
"check": "biome check . --apply-unsafe",
"ci": "biome ci .",
"test": "vitest --run",
"coverage": "pnpm run test --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/windchime-yk/novel-support.js.git"
},
"author": "WhyK",
"license": "MIT",
"bugs": {
"url": "https://github.com/windchime-yk/novel-support.js/issues"
},
"homepage": "https://github.com/windchime-yk/novel-support.js#readme",
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.6",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.23.6",
"@babel/preset-typescript": "^7.23.3",
"@biomejs/biome": "1.4.1",
"@vitest/coverage-v8": "^1.1.0",
"autoprefixer": "^10.4.16",
"babel-plugin-transform-remove-export": "^1.0.0",
"cpx": "^1.5.0",
"jsdom": "^23.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.32",
"postcss-cli": "^11.0.0",
"sass": "^1.69.5",
"typescript": "^5.3.3",
"vitest": "^1.1.0"
}
}