-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.39 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
{
"type": "module",
"name": "@carrot-kpi/contracts",
"version": "0.10.1",
"description": "A smart contract solution to create efficient KPI tokens.",
"author": "Federico Luzzi <federico.luzzi@carrot-labs.xyz>",
"license": "GPL-3.0-or-later",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"files": [
"./dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "forge fmt --check && prettier --check .",
"format": "forge fmt && prettier --write .",
"build": "forge build",
"build:production": "FOUNDRY_PROFILE=production forge build",
"lint:commit-message": "commitlint -e",
"test": "forge test",
"test:coverage": "forge coverage",
"test:gasreport": "forge test --gas-report",
"snapshot": "forge snapshot",
"compile": "forge build",
"compile:production": "FOUNDRY_PROFILE=production forge build",
"prepare": "husky install",
"build:lib": "vite build && tsc",
"prepublishOnly": "pnpm build:lib"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"typescript": "^5.3.3",
"viem": "^2.7.14",
"vite": "^5.1.4"
}
}