-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.25 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.25 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
{
"name": "@plurality-network/smart-profile-utils",
"version": "1.1.0",
"description": "A package for managing Smart Profile entities, including their data model, utilities, and core functionality",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/commonjs/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:esm": "tsc --project tsconfig.esm.json",
"build:commonjs": "tsc --project tsconfig.commonjs.json",
"build": "npm run build:esm && npm run build:commonjs"
},
"files": [
"dist/",
"node_modules/",
"package.json"
],
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@ethereum-attestation-service/eas-sdk": "^2.7.0",
"ethers": "^6.13.4",
"class-transformer": "^0.5.1"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/Web3-Plurality/plurality-smart-profile-utils.git"
}
}