-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.14 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
{
"name": "spci-libs",
"version": "0.0.12",
"description": "The project consists of a set of libraries for obtaining system information.",
"author": "Tagir Khadzhiev <aspedm@gmail.com>",
"homepage": "https://github.com/Aspedm/spci-libs",
"repository": {
"type": "git",
"url": "https://github.com/Aspedm/spci-libs.git"
},
"license": "MIT",
"private": false,
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"scripts": {
"start": "node --experimental-modules playground/index.js",
"clean": "rimraf dist",
"build": "yarn clean && rollup --config",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@babel/core": "7.24.0",
"@babel/plugin-transform-private-methods": "7.23.3",
"@babel/preset-typescript": "7.23.3",
"@inquirer/prompts": "4.3.0",
"@inquirer/select": "2.2.0",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "25.0.7",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-terser": "0.4.4",
"@types/lodash": "4.14.202",
"@types/node": "20.10.8",
"@typescript-eslint/eslint-plugin": "6.18.1",
"@typescript-eslint/parser": "6.18.1",
"chalk": "5.3.0",
"eslint": "8.56.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"prettier": "3.2.5",
"rimraf": "5.0.5",
"rollup": "4.12.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-dts": "6.1.0",
"rollup-plugin-typescript2": "0.36.0",
"typescript": "5.3.3"
},
"dependencies": {
"lodash": "4.17.21"
},
"resolutions": {
"jackspeak": "2.1.1"
}
}