-
-
Notifications
You must be signed in to change notification settings - Fork 104
/
Copy pathpackage.json
59 lines (59 loc) · 1.38 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
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "flatpack-json",
"publishConfig": {
"access": "public",
"provenance": true
},
"version": "8.15.0",
"description": "A library to normalize JSON objects to reduce the size.",
"keywords": [
"cspell",
"json",
"normalize",
"flatten"
],
"author": "Jason Dent <jason@streetsidesoftware.nl>",
"homepage": "https://github.com/streetsidesoftware/cspell/tree/main/packages/flatpack-json#readme",
"license": "MIT",
"type": "module",
"sideEffects": false,
"exports": {
".": "./dist/index.js"
},
"directories": {
"dist": "dist"
},
"typings": "dist/index.d.ts",
"files": [
"dist",
"!**/*.tsbuildInfo",
"!**/__mocks__",
"!**/*.test.*",
"!**/*.spec.*",
"!**/*.map"
],
"scripts": {
"build": "tsc -p .",
"watch": "tsc -p . -w",
"clean": "shx rm -rf dist temp coverage \"*.tsbuildInfo\"",
"clean-build": "pnpm run clean && pnpm run build",
"coverage": "vitest run --coverage",
"test-watch": "vitest",
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "https://github.com/streetsidesoftware/cspell.git",
"directory": "packages/flatpack-json"
},
"bugs": {
"url": "https://github.com/streetsidesoftware/cspell/labels/filetype"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@cspell/filetypes": "workspace:*",
"diff": "^7.0.0"
}
}