-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.72 KB
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
{
"name": "@agile/mathcrowd-geometry-lib",
"version": "2.1.4",
"description": "This is a Typescript library for 2D geometry.",
"types": "dist/index.d.ts",
"module": "dist/index.esm.js",
"main": "dist/index.cjs.js",
"publishConfig": {
"registry": "https://cloud.mathcrowd.cn:2444/api/v4/projects/68/packages/npm/"
},
"scripts": {
"clean": "rm -rf dist",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"types": "tsc --project tsconfig-types.json",
"build": "npm run clean && npm run types && rollup -c",
"docs": "npx typedoc --options ./typedoc.config.cjs",
"test": "jest --passWithNoTests"
},
"repository": {
"type": "git",
"url": "https://cloud.mathcrowd.cn:2444/agile/frontend/mathcrowd-geometry-lib.git"
},
"keywords": [
"geometry",
"javascript",
"typescript",
"2d",
"algorithms",
"shape"
],
"author": "Charles Bao",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rollup": "^4.19.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"ts-jest": "^29.2.3",
"typedoc": "^0.26.4",
"typescript": "^5.5.3"
}
}