-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.74 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@adguard/diff-builder",
"version": "1.0.18",
"description": "A tool for generating differential updates for filter lists.",
"repository": {
"type": "git",
"url": "git+https://github.com/AdguardTeam/DiffBuilder.git"
},
"bugs": {
"url": "https://github.com/AdguardTeam/DiffBuilder/issues"
},
"homepage": "https://github.com/AdguardTeam/DiffBuilder#readme",
"author": "AdGuard",
"license": "MIT",
"main": "dist/api/builder/cjs/index.js",
"types": "dist/types/diff-builder/index.d.ts",
"files": [
"dist",
"src"
],
"exports": {
".": "./dist/api/builder/cjs/index.js",
"./es": "./dist/api/builder/es/index.js",
"./diff-updater": "./dist/api/updater/cjs/index.js",
"./diff-updater/es": "./dist/api/updater/es/index.js"
},
"typesVersions": {
"*": {
"es": [
"dist/types/diff-builder/index.d.ts"
],
"diff-updater": [
"dist/types/diff-updater/index.d.ts"
],
"diff-updater/es": [
"dist/types/diff-updater/index.d.ts"
]
}
},
"bin": {
"diff-builder": "dist/bin/diff-builder"
},
"scripts": {
"prebuild": "rimraf dist && yarn build:types",
"build": "rollup -c rollup.config.ts --configPlugin typescript",
"postbuild": "ts-node tasks/build-txt",
"watch": "rollup -c rollup.config.ts --configPlugin typescript -w",
"build:types": "tsc --project tsconfig.build.json --declaration --emitDeclarationOnly --outdir dist/types",
"lint": "eslint --cache . && tsc --noEmit",
"diff-builder": "node -r esbuild-register cli/index.ts build -c",
"test": "jest"
},
"dependencies": {
"commander": "^11.1.0",
"crypto-js": "^4.2.0",
"diff": "git+https://github.com/105th/jsdiff.git#2be2e7df90e8eebd99f0385c7b1dc16c2f4dcc1a"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@swc/core": "^1.3.95",
"@swc/jest": "^0.2.29",
"@types/crypto-js": "^4.2.1",
"@types/diff": "^5.0.7",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.6",
"@types/node": "^20.8.7",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"esbuild": "^0.19.5",
"esbuild-register": "^3.5.0",
"eslint": "^8.52.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-import-newlines": "^1.3.4",
"eslint-plugin-jsdoc": "^46.8.2",
"express": "^4.18.2",
"jest": "^29.7.0",
"rollup": "^4.1.4",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-preserve-shebangs": "^0.2.0",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
}
}