-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.67 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
{
"name": "linearly",
"version": "0.32.0",
"description": "Matrix and vector library with immutable data types",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"sideEffects": false,
"scripts": {
"dev": "concurrently npm:dev:*",
"dev:test": "vitest",
"dev:api": "typedoc src/index.ts --watch",
"dev:doc": "vuepress dev docs",
"build": "tsc && tsc -p tsconfig.cjs.json",
"build:api": "typedoc src/index.ts",
"build:doc": "npm run build:api; vuepress build docs",
"lint": "eslint",
"test": "vitest run",
"prepare": "npm run build",
"preversion": "npm run test",
"postversion": "git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/baku89/linearly.git"
},
"keywords": [
"matrix",
"vector",
"linear",
"algebra",
"graphics",
"transform"
],
"author": "Baku Hashimoto <mail@baku89.com>",
"files": [
"lib"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/baku89/linearly/issues"
},
"homepage": "https://baku89.github.io/linearly",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"@vuepress/bundler-vite": "2.0.0-rc.2",
"@vuepress/plugin-palette": "^2.0.0-rc.14",
"@vuepress/theme-default": "2.0.0-rc.1",
"concurrently": "^9.0.1",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typedoc": "^0.26.7",
"typedoc-plugin-markdown": "^4.2.7",
"typescript": "^5.6.2",
"vitest": "^2.1.1",
"vuepress": "2.0.0-rc.1"
}
}