-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.42 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
{
"name": "@2anki/default-templates",
"version": "0.0.0",
"description": "default templates for 2anki",
"main": "dist/default-templates.js",
"scripts": {
"build": "npm run prebuild; tsc && vite build; npm run postbuild",
"test": "vitest",
"test:watch": "vitest watch",
"coverage": "vitest --coverage",
"prebuild": "rm -rf dist",
"postbuild": "cp -r src/templates/** dist/templates",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/2anki/default-templates.git"
},
"keywords": [
"notion",
"title",
"page",
"title"
],
"author": "Alexander Alemayhu",
"license": "MIT",
"bugs": {
"url": "https://github.com/2anki/default-templates/issues"
},
"homepage": "https://github.com/2anki/default-templates#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.2",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.46.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.28.1",
"rollup-plugin-typescript-paths": "^1.4.0",
"semantic-release": "^23.0.2",
"tslib": "^2.6.0",
"vitest": "^1.0.1",
"husky": "^9.0.11"
},
"directories": {
"lib": "dist"
},
"files": [
"dist"
]
}