-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.33 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
{
"name": "js-locator",
"version": "0.1.0",
"description": "",
"author": "Tyler Nullmeier",
"license": "MIT",
"scripts": {
"build:types": "tsc",
"build:js": "rollup -c",
"build": "run-s ci clean build:*",
"format": "prettier --ignore-path .eslintignore --write .",
"lint": "prettier --ignore-path .eslintignore --check . && eslint --ext .ts,tsx src",
"test": "jest",
"ci": "run-s lint",
"clean": "del-cli dist types"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"exports": {
".": {
"default": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"files": [
"dist",
"types"
],
"typings": "dist/index.d.ts",
"main": "dist/index.js",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-swc": "^0.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@types/jest": "^29.5.10",
"@types/node": "^20.9.4",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"del-cli": "^5.1.0",
"eslint": "^8.55.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.0",
"rollup": "^4.5.1",
"rollup-plugin-dts": "^6.1.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.2"
}
}