-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.08 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
{
"name": "@lawgdev/js",
"version": "1.0.10",
"description": "Lawg JS SDK",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"dependencies": {
"@onehop/json-methods": "^1.2.0",
"axios": "^1.4.0",
"dotenv": "^16.3.1",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"zod": "^3.22.2"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"tsup": "^7.0.0",
"typescript": "^5.1.3"
},
"scripts": {
"build": "tsup --format cjs,esm --dts",
"test": "jest --config jest.config.ts --forceExit",
"release": "yarn test && yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lawgdev/lawg.js.git"
},
"keywords": [
"lawg",
"typescript"
],
"author": "Lawg",
"license": "MIT",
"bugs": {
"url": "https://github.com/lawgdev/lawg.js/issues"
},
"homepage": "https://github.com/lawgdev/lawg.js#readme",
"files": [
"dist",
"package.json",
"README.md"
],
"publishConfig": {
"access": "public"
}
}