-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.64 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
{
"name": "vk-cleaner",
"private": true,
"version": "1.0.2",
"description": "Cleans your vk page",
"license": "MIT",
"author": {
"name": "Vladlen (Negezor)",
"email": "negezor@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/negezor/vk-cleaner.git"
},
"homepage": "https://github.com/negezor/vk-cleaner#readme",
"bugs": "https://github.com/negezor/vk-cleaner/issues",
"main": "dist/cleaner.mjs",
"engines": {
"node": ">=20.0.0"
},
"type": "module",
"dependencies": {
"@inquirer/prompts": "^5.0.1",
"@vk-io/authorization": "^1.4.1",
"common-tags": "^1.8.2",
"htmlparser2": "^9.1.0",
"vk-io": "^4.9.1"
},
"devDependencies": {
"@biomejs/biome": "^1.7.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/common-tags": "^1.8.4",
"@types/node": "^20.12.7",
"rollup": "^4.14.3",
"rollup-plugin-typescript2": "^0.36.0",
"tsx": "^4.7.2",
"typescript": "^5.4.5"
},
"scripts": {
"prepare": "npm run rollup:build && npm run test",
"build": "NODE_ENV=production npm run rollup:build",
"watch": "npm run rollup:watch",
"rollup:build": "rollup -c",
"rollup:watch": "npm run rollup:build -- --watch",
"test": "npm run lint && npm run test:node",
"test:node": "node --import tsx --test test/*.test.ts",
"lint": "npm run lint:biome",
"lint:biome": "biome lint --apply ./src"
}
}