-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.01 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.01 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
{
"name": "safe-ts-env",
"version": "1.0.0",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/iamflowz/safe-ts-env.git"
},
"scripts": {
"test": "jest",
"test-coverage": "jest --coverage",
"build": "tsc",
"format": "prettier --write .",
"check-exports": "attw --pack . --profile esm-only ",
"check-format": "prettier --check .",
"ci": "npm run build && npm run check-format && npm run check-exports",
"prepublishOnly": "npm run ci",
"local-release": "changeset version && changeset publish"
},
"author": "",
"license": "MIT",
"description": "",
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.1",
"@changesets/cli": "^2.29.4",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"ts-jest": "^29.3.2",
"typescript": "^5.8.3"
},
"dependencies": {
"zod": "^3.24.4"
},
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js"
}
}
}