-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.19 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
{
"name": "array-changeset",
"version": "1.0.0",
"description": "Library for creating and applying changesets to arrays",
"source": "src/index.ts",
"type": "module",
"exports": "./dist/index.js",
"scripts": {
"test": "node --import tsx --test tests/*.test.ts",
"coverage": "node --import tsx --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=report.lcov tests/*.test.ts",
"build": "rm -rf dist && tsc",
"check": "biome check src/ *.json",
"fix": "biome check --apply src/ *.json",
"prepublishOnly": "npm test && npm run check && npm run build"
},
"sideEffects": false,
"dependencies": {
"fast-deep-equal": "^3.1.3"
},
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@types/node": "20.11.24",
"tsx": "4.7.1",
"typescript": "5.3.3"
},
"author": {
"name": "Erik Michelson",
"email": "opensource@erik.michelson.eu",
"url": "https://erik.michelson.eu"
},
"keywords": [
"array",
"changeset",
"changes",
"diff"
],
"license": "MIT",
"types": "dist/index.d.ts",
"files": [
"package.json",
"LICENSES",
"LICENSE",
"dist"
],
"engines": {
"node": ">=18"
}
}