-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.53 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.53 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@owlprotocol/contracts-api-starter",
"version": "0.1.0",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/owlprotocol/contracts-api-starter.git"
},
"homepage": "https://owlprotocol.github.io/contracts-api-starter",
"copyright": "Copyright 2023 Owl Protocol",
"author": {
"name": "Leo Vigna",
"email": "leo.vigna@gmail.com",
"url": "https://github.com/owlprotocol"
},
"license": "MIT",
"type": "module",
"main": "./lib/cjs/index.cjs",
"module": "./lib/esm/index.mjs",
"types": "./lib/types/index.d.ts",
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"require": "./lib/cjs/index.js",
"import": "./lib/esm/index.js"
}
},
"files": [
"dist/*",
"lib/*",
"src/*",
"LICENSE",
"README.md"
],
"engines": {
"node": "^18.0.0"
},
"scripts": {
"test:watch": "vitest",
"test:ci": "vitest --run",
"build": "npm-run-all -p tsc esbuild",
"build:watch": "npm-run-all -p tsc:watch esbuild:watch",
"esbuild": "node esbuild.config.mjs",
"esbuild:watch": "ESBUILD_WATCH=true node esbuild.config.mjs",
"tsc": "tsc",
"tsc:watch": "tsc -w",
"clean": "rimraf lib dist",
"clean:node_modules": "rimraf node_modules",
"madge": "madge src/index.ts -c",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint --fix 'src/**/*.ts'",
"recipes:deploy-safe": "tsx src/deploy-safe.ts",
"recipes:deploy-erc20": "tsx src/deploy-erc20.ts",
"recipes:deploy-erc721-owl-collection": "tsx src/deploy-erc721-owl-collection.ts",
"recipes:deploy-erc1155-owl-collection": "tsx src/deploy-erc1155-owl-collection.ts",
"recipes:deploy-reo-collection": "tsx src/deploy-reo-collection.ts",
"recipes:deploy-loyalty-program": "tsx src/deploy-loyalty-program.ts"
},
"dependencies": {
"@owlprotocol/contracts-api-client-trpc": "2.0.12",
"dotenv": "^16.3.1",
"ethers": "5.7.2"
},
"devDependencies": {
"@owlprotocol/contracts": "2.0.5",
"@owlprotocol/contracts-api": "2.0.10",
"@owlprotocol/contracts-proxy": "2.0.6",
"@owlprotocol/esbuild-config": "2.0.2",
"@owlprotocol/eslint-config": "2.0.2",
"@owlprotocol/prettier-config": "2.0.2",
"@owlprotocol/tsconfig": "2.0.2",
"@types/dotenv": "^8.2.0",
"@types/node": "^16.11.26",
"cross-env": "^7.0.3",
"madge": "^5.0.2",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"trpc-openapi": "^1.2.0",
"tsx": "^3.12.7",
"typescript": "4.9.5",
"vite": "^4.4.9",
"vitest": "^0.34.2"
}
}