-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 928 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 928 Bytes
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
{
"name": "nanoid-dictionary",
"version": "5.0.0",
"homepage": "https://github.com/CyberAP/nanoid-dictionary",
"description": "Predefined character sets to use with nanoid",
"main": "dist/dictionary.cjs.js",
"module": "dist/dictionary.esm.js",
"browser": "dist/dictionary.umd.js",
"types": "dist/dictionary.d.ts",
"author": "Stanislav Lashmanov <stasvarenkin@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/CyberAP/nanoid-dictionary.git"
},
"bugs": {
"url": "https://github.com/CyberAP/nanoid-dictionary/issues"
},
"files": [
"dist",
"CHANGELOG.md",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rollup -c"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"rollup": "^4.40.0",
"rollup-plugin-delete": "^3.0.1",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.8.3"
}
}