-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.55 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": "@silverhand/essentials",
"version": "2.9.2",
"description": "The missing essentials for TypeScript (and JavaScript).",
"repository": "[email protected]:silverhand-io/essentials.git",
"author": "Silverhand Inc.",
"license": "MIT",
"type": "module",
"main": "./lib/index.cjs",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
"types": "./lib/index.d.ts",
"require": "./lib/index.cjs",
"import": "./lib/index.js",
"default": "./lib/index.js"
},
"files": [
"lib"
],
"scripts": {
"build": "rm -rf lib/ && tsc -p tsconfig.build.json --noEmit && rollup -c",
"build:test": "rm -rf lib/ && tsc -p tsconfig.test.json",
"prepack": "pnpm test && pnpm build",
"lint": "eslint --ext .ts src",
"test": "pnpm build:test && NODE_OPTIONS=--experimental-vm-modules jest"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@silverhand/eslint-config": "5.0.0",
"@silverhand/ts-config": "5.0.0",
"@types/jest": "^29.2.4",
"@types/node": "^20.11.6",
"eslint": "^8.56.0",
"expect-type": "^0.17.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest-matcher-specific-error": "^1.0.0",
"prettier": "^3.2.4",
"rollup": "^4.0.0",
"rollup-plugin-summary": "^2.0.0",
"typescript": "^5.3.3"
},
"engines": {
"node": "^18.12.0 || ^20.9.0 || ^22.0.0",
"pnpm": "^9.0.0"
},
"prettier": "@silverhand/eslint-config/.prettierrc",
"eslintConfig": {
"extends": "@silverhand"
}
}