-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.37 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
{
"name": "anoare",
"version": "0.0.20",
"description": "あの〜、あれ...なんだっけ? / Umm…, What was it...?",
"keywords": [
"typescript",
"utility"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nantokaworks/anoare.git"
},
"license": "MIT",
"author": "Yamashita, Shinichi",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "vite build && tsc -p tsconfig.build.json",
"format": "pnpm dlx sort-package-json && pnpm dlx sort-compiler-options && pnpm dlx sort-compiler-options -c tsconfig.build.json && pnpm dlx prettier --write './**/*.{ts,tsx}' 'tsconfig*.json'",
"lint": "eslint ./src/*",
"prepublish": "pnpm build",
"build:docs": "typedoc",
"test": "vitest --run"
},
"prettier": "prettier-config-nantokaworks",
"devDependencies": {
"prettier-config-nantokaworks": "^0.1.1",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"typedoc": "^0.25.6",
"typescript": "^5.0.4",
"vite": "^4.3.9",
"vitest": "^1.1.1"
},
"publishConfig": {
"access": "public"
}
}