-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
120 lines (120 loc) · 3.04 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "cryptopt",
"version": "1.0.2",
"description": "Generates high performance ASM from JSON-specified Arithmetic",
"main": "dist/CryptOpt.js",
"type": "module",
"files": [
"./dist/CryptOpt.js",
"./dist/data/*"
],
"cpu": [
"x64"
],
"os": [
"linux"
],
"repository": {
"type": "git",
"homepage": "https://github.com/0xADE1AIDE/CryptOpt.git"
},
"author": "[email protected]",
"license": "Apache-2.0",
"homepage": "https://github.com/0xADE1AIDE/CryptOpt#readme",
"scripts": {
"test": "vitest",
"test-no-watch": "vitest --watch false",
"test-cov": " vitest --coverage",
"lint-check": "eslint .",
"lint-fix": "eslint --fix .",
"format-check": "npx prettier --check \"./**/*.ts\" \"!./dist\"",
"format-fix": "npx prettier -w \"./**/*.ts\" \"!./dist\"",
"bundle-debug": "DEBUG=1 rollup --config rollup.config.js",
"bundle": "rollup --config rollup.config.js",
"bundle-w": "rollup --config rollup.config.js -w"
},
"prettier": {
"trailingComma": "all",
"printWidth": 110
},
"dependencies": {
"@vitest/coverage-v8": "^0.34.1",
"lodash-es": "^4.17.21",
"measuresuite": "^2.2.2",
"proper-lockfile": "^4.1.2",
"simple-statistics": "^7.8.3",
"yargs": "^17.7.2"
},
"devDependencies": {
"@rollup/plugin-strip": "^3.0.2",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"@types/fs-extra": "^11.0.1",
"@types/lodash-es": "^4.17.8",
"@types/node": "^20.6.0",
"@types/proper-lockfile": "^4.1.2",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"c8": "^8.0.1",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"prettier": "^3.0.1",
"rollup": "^3.29.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-shell": "^1.0.9",
"tslib": "^2.6.1",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.34.1"
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"simple-import-sort",
"import",
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"ignorePatterns": [
"*.js",
"dist",
"coverage"
],
"rules": {
"simple-import-sort/imports": "warn",
"simple-import-sort/exports": "warn",
"import/first": "warn",
"import/newline-after-import": "warn",
"import/no-duplicates": "warn",
"@typescript-eslint/no-unused-vars": [
1,
{
"argsIgnorePattern": "^_"
}
]
},
"overrides": [
{
"files": [
"*.ts"
],
"rules": {
"simple-import-sort/imports": [
"warn",
{}
]
}
}
]
}
}