-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.25 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
{
"name": "@ricado/version-file",
"version": "2.0.0",
"description": "Generates a Verson File with your App's name, version and build date",
"repository": {
"url": "https://github.com/ricado-group/js-version-file.git"
},
"type": "module",
"main": "./lib/esm/index.js",
"types": "./lib/esm/types/index.d.ts",
"exports": {
".": {
"import": {
"types": "./lib/esm/types/index.d.ts",
"default": "./lib/esm/index.js"
}
}
},
"files": [
"lib/**/*",
"bin/**/*"
],
"scripts": {
"build": "build-tools build --type esm",
"prepack": "npm run build",
"test": "build-tools test",
"docs": "build-tools docs"
},
"keywords": [
"version",
"file",
"build",
"date"
],
"license": "MIT",
"bin": {
"generate-version": "./bin/cli.js"
},
"dependencies": {
"chalk": "^5.3.0",
"ejs": "^3.1.10",
"meow": "^13.2.0"
},
"devDependencies": {
"@ricado/library-build-tools": "^1.1.2",
"@types/ejs": "^3.1.5",
"@types/jest": "^29.5.0",
"@types/node": "^20.12.7",
"@types/webpack": "^5.28.5"
}
}