-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 1.07 KB
/
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
42
43
44
45
46
47
{
"name": "@openally/config",
"version": "1.0.1",
"description": "Reactive configuration loader",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"type": "module",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"prepublishOnly": "npm run build",
"test-only": "glob -c \"tsx --test\" \"./test/**/*.test.ts\"",
"test": "c8 --all --src ./src -r html npm run test-only",
"lint": "cross-env eslint src/**/*.ts"
},
"files": [
"dist"
],
"keywords": [
"openally",
"config",
"json",
"schema",
"safe",
"loader",
"observable",
"reactive",
"hotreload"
],
"author": "GENTILHOMME Thomas <[email protected]>",
"license": "MIT",
"dependencies": {
"ajv": "^8.17.1",
"smol-toml": "^1.2.2",
"zen-observable": "^0.10.0"
},
"devDependencies": {
"@types/zen-observable": "^0.8.7"
}
}