-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.41 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
{
"name": "@kanamone/scrambler",
"version": "1.0.6",
"repository": {
"type": "git",
"url": "git://github.com/kanamone/scrambler.git"
},
"author": "AOKI Yuto <aoki@u-ne.co>",
"license": "MIT",
"type": "module",
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"bin": "./dist/cli.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"node": "./dist/index.cjs",
"default": "./dist/index.js"
}
},
"scripts": {
"test": "vitest run",
"build": "tsup",
"lint": "eslint -c .eslintrc.yml",
"publint": "publint",
"release": "changeset publish"
},
"files": [
"dist"
],
"keywords": [
"Scrambler"
],
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@changesets/cli": "2.26.2",
"@types/node": "^16.3.2",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"eslint": "^7.30.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"publint": "0.2.5",
"ts-node": "^10.1.0",
"tsup": "7.2.0",
"typescript": "^4.3.5",
"vitest": "0.34.6"
}
}