-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 893 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 893 Bytes
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
{
"name": "@casekit/unindent",
"version": "1.0.5",
"description": "Strips the leading whitespace from the left of a multiline string",
"main": "index.js",
"types": "index.d.ts",
"imports": {
"#*": "./build/*"
},
"exports": {
".": "./build/index.js"
},
"files": [
"/build"
],
"scripts": {
"lint": "eslint --ignore-path .gitignore src",
"prettier": "prettier -c src",
"typecheck": "tsc --noEmit",
"release": "rm -rf build && pnpm build && pnpm version patch && pnpm publish",
"build": "tsc",
"test": "vitest"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.3.1",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"typescript": "^5.3.3",
"vitest": "^1.1.1"
},
"author": "Russell Dunphy",
"license": "ISC"
}