forked from DeepSourceCorp/shifty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 984 Bytes
/
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
{
"name": "@deepsource/shifty",
"description": "Shifty is a tiny zero-dependency secrets generator, built for the web using TypeScript.",
"version": "1.0.0",
"license": "MIT",
"homepage": "https://github.com/deepsourcelabs/shifty",
"keywords": [
"security",
"secrets",
"crypto",
"password"
],
"repository": "https://github.com/deepsourcelabs/shifty",
"bugs": "https://github.com/deepsourcelabs/shifty/issues",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"c8": "^7.11.0",
"jsdom": "^19.0.0",
"tsup": "^5.11.13",
"typescript": "^4.4.4",
"vitest": "^0.2.5"
}
}