-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.11 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
{
"name": "elementid",
"version": "0.0.2",
"description": "Smart way to manage IDs for frontend Javascript and Typescript projects",
"main": "dist/index.js",
"bin": {
"elementid": "dist/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/appzic/elementid.git"
},
"scripts": {
"dev": "tsc --watch",
"build": "npm run clean && tsc",
"clean": "rimraf ./dist elementid-*.tgz",
"format": "prettier --write .",
"example:astro": "sh examples.sh astro"
},
"keywords": [
"javascript ",
"cli",
"toml",
"typescript",
"frontend",
"command-line",
"frontend-web",
"watch",
"devdependency",
"zero-dependency",
"command-line-tool",
"nanoid",
"id-management"
],
"author": "Yasitha Nadeeshan",
"license": "MIT",
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/node": "^16.11.41",
"@types/yargs": "^15.0.4",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"chalk": "^4.0.0",
"chokidar": "^3.4.0",
"fs-extra": "^11.1.0",
"nanoid": "^3.3.4",
"toml": "^3.0.0",
"yargs": "^15.4.1"
}
}