-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 997 Bytes
/
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
{
"name": "@feelinglovelynow/env-write",
"version": "1.0.2",
"description": "Set keys and values in .env file w/ bash",
"author": "https://github.com/feelinglovelynow?tab=repositories",
"license": "MIT",
"type": "module",
"types": "./dist/index.ts",
"exports": "./dist/index.js",
"files": [
"dist",
"tsc",
"src"
],
"keywords": [
".env",
"svelkite",
"cloudflare workers",
"edge"
],
"scripts": {
"watch": "pnpm tsc -w",
"build": "bash ./build.sh",
"cloud": "pnpm build && pnpm publish --access public .",
"test": "NODE_OPTIONS=--experimental-vm-modules pnpm jest"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/node": "^20.10.1",
"esbuild": "^0.19.8",
"jest": "^29.7.0",
"typescript": "^5.3.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/feelinglovelynow/env-write.git"
},
"bugs": {
"url": "https://github.com/feelinglovelynow/env-write/issues"
}
}