-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.02 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
{
"name": "cloud-configuration",
"version": "0.2.0",
"description": "This package allows you to use CloudConfig easily.",
"author": "Alex Zeng",
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"package.json"
],
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsup ./src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexStack/cloud-configuration.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/AlexStack/cloud-configuration/issues"
},
"homepage": "https://github.com/AlexStack/cloud-configuration#readme",
"devDependencies": {
"@types/crypto-js": "^4.1.2",
"@types/node": "^20.8.2",
"typescript": "~4",
"tsup": "^8.0.2"
},
"dependencies": {
"crypto-js": "^4.1.1"
}
}