-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.26 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.26 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
{
"name": "@flagg2/settlements",
"version": "0.0.4",
"description": "",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"lint": "tsc --noEmit",
"test": "vitest --passWithNoTests",
"build": "tsup src/index.ts --dts --format cjs,esm",
"release": "pnpm changeset && rm -r dist && pnpm run build && changeset version && changeset publish"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@flagg2/result": "^1.2.1",
"fuse.js": "^6.6.2"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/clone": "^2.1.1",
"@types/node": "^20.2.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"tsup": "^6.7.0",
"typescript": "^5.0.4",
"vitest": "^0.29.2"
},
"prettier": {
"printWidth": 80,
"singleQuote": false,
"trailingComma": "all",
"tabWidth": 3,
"semi": false,
"arrowParens": "always",
"endOfLine": "lf"
}
}