-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.4 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@geometryzen/my-lib",
"version": "0.9.26",
"description": "My TypeScript Library Template",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/index.min.js",
"require": "./dist/commonjs/index.js",
"system": "./dist/system/index.min.js",
"default": "./dist/esm/index.min.js"
}
},
"browser": "./dist/umd/index.js",
"main": "./dist/commonjs/index.js",
"module": "./dist/esm/index.min.js",
"type": "module",
"types": "./dist/index.d.ts",
"files": [
"dist/commonjs/index.js",
"dist/commonjs/index.js.map",
"dist/esm/index.js",
"dist/esm/index.js.map",
"dist/esm/index.min.js",
"dist/esm/index.min.js.map",
"dist/index.d.ts",
"dist/system/index.js",
"dist/system/index.js.map",
"dist/system/index.min.js",
"dist/system/index.min.js.map",
"dist/umd/index.js",
"dist/umd/index.js.map"
],
"keywords": [
"geometryzen",
"my",
"lib"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run clean && rollup --config rollup.config.mts --configPlugin @rollup/plugin-typescript",
"check": "npx package-check",
"clean": "rm -rf coverage && rm -rf dist && rm -rf docs && rm -rf es2015 && rm -rf system && rm -rf types && rm -rf build",
"coverage": "npm run test -- --coverage",
"dev": "rollup --config rollup.config.mts --configPlugin @rollup/plugin-typescript -w",
"docs": "npm run docs:typedoc && open-cli docs/index.html",
"docs:typedoc": "rm -rf docs && typedoc --options typedoc.json",
"format:check": "prettier --check '**/*.{js,ts,tsx,css,yml,json}'",
"format:write": "prettier --write '**/*.{js,ts,tsx,css,yml,json}'",
"lint": "eslint .",
"pages": "npm run docs:typedoc && gh-pages -d docs",
"release": "release-it",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geometryzen/my-lib.git"
},
"author": {
"name": "David Geo Holmes",
"email": "david.geo.holmes@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/geometryzen/my-lib/issues"
},
"homepage": "https://github.com/geometryzen/my-lib#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@skypack/package-check": "^0.2.2",
"@types/jest": "^29.5.13",
"@types/rollup-plugin-peer-deps-external": "^2.2.5",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"gh-pages": "^6.1.1",
"jest": "^29.7.0",
"open-cli": "^8.0.0",
"prettier": "^3.3.3",
"release-it": "^17.7.0",
"rollup": "^4.24.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"ts-jest": "^29.2.5",
"ts-jest-resolver": "^2.0.1",
"ts-node": "^10.9.2",
"tslib": "^2.7.0",
"typedoc": "^0.26.8",
"typescript": "^5.6.3",
"typescript-eslint": "^8.8.1"
}
}