-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.43 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.43 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
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@env-spec/parser",
"version": "0.3.1",
"description": "Parser for @env-spec enabled dotenv files",
"homepage": "https://varlock.dev",
"bugs": "https://github.com/dmno-dev/varlock/issues",
"repository": {
"type": "git",
"url": "https://github.com/dmno-dev/varlock.git",
"directory": "packages/env-spec-parser"
},
"main": "dist/index.js",
"files": ["dist"],
"exports": {
".": {
"ts-src": "./src/index.ts",
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"dev": "run-p dev:grammar dev:ts",
"dev:grammar": "bun run build:grammar -w",
"dev:ts": "tsup --watch",
"build:grammar": "peggy -c peggy.config.cjs",
"build:lib": "tsup",
"build": "bun run build:grammar && bun run build:lib",
"test": "run-p \"build:grammar -w\" _test:watch",
"_test:watch": "vitest",
"test:ci": "bun run build:grammar && vitest --run",
"typecheck": "tsc --noEmit"
},
"keywords": [
"env-spec",
"dotenv",
"env",
"env vars",
"environment variables",
"validation",
"schema",
"config"
],
"author": "dmno-dev",
"license": "MIT",
"engines": {
"node": ">=22"
},
"devDependencies": {
"@types/node": "catalog:",
"ansis": "catalog:",
"npm-run-all": "^4.1.5",
"outdent": "catalog:",
"peggy": "^5.0.6",
"tsup": "catalog:",
"vitest": "catalog:"
}
}