-
-
Notifications
You must be signed in to change notification settings - Fork 208
/
Copy pathpackage.json
60 lines (60 loc) · 1.42 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
{
"name": "@jscpd/leveldb-store",
"version": "4.0.1",
"description": "leveldb store for jscpd",
"author": "Andrey Kucherenko <[email protected]>",
"homepage": "https://github.com/kucherenko/jscpd#readme",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./README.md": "./README.md"
},
"scripts": {
"build": "tsup-node --dts",
"dev": "nodemon",
"test:dev": "vitest",
"typecheck": "tsc",
"cleanup": "rimraf ./dist .turbo"
},
"directories": {
"src": "src",
"test": "__tests__"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/kucherenko/jscpd.git"
},
"bugs": {
"url": "https://github.com/kucherenko/jscpd/issues"
},
"dependencies": {
"@jscpd/core": "workspace:*",
"@jscpd/tokenizer": "workspace:*",
"fs-extra": "^11.2.0",
"level": "^8.0.1",
"rimraf": "^6.0.1"
},
"devDependencies": {
"@jscpd/tsconfig": "workspace:*",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.5.2",
"nodemon": "^3.1.4",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"gitHead": "beaae8ee77d5c7f41d2a0c65187887bd0dc87148"
}