-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.91 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.91 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
{
"name": "@iota/kiosk",
"author": "IOTA Foundation <info@iota.org>",
"description": "IOTA Kiosk library",
"repository": "https://github.com/iotaledger/ts-packages",
"version": "0.8.1",
"license": "Apache-2.0",
"type": "commonjs",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/cjs/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"sideEffects": false,
"files": [
"CHANGELOG.md",
"dist",
"src"
],
"engines": {
"node": ">=24"
},
"scripts": {
"build": "build-package",
"test": "echo 'No unit tests for kiosk SDK'",
"pre-commit": "pnpm prettier:fix && pnpm lint && pnpm build",
"prettier:check": "prettier -c --ignore-unknown --ignore-path=../../.prettierignore --ignore-path=.prettierignore .",
"prettier:fix": "prettier -w --ignore-unknown --ignore-path=../../.prettierignore --ignore-path=.prettierignore .",
"eslint:check": "eslint --max-warnings=0 .",
"eslint:fix": "pnpm run eslint:check --fix",
"lint": "pnpm run eslint:check && pnpm run prettier:check",
"lint:fix": "pnpm run eslint:fix && pnpm run prettier:fix",
"test:e2e": "wait-on http://127.0.0.1:9123 -l --timeout 120000 && vitest run e2e",
"prepare:e2e": "cargo build --bin iota-localnet --profile dev && cross-env RUST_LOG=warn,iota=error,anemo_tower=warn,consensus=off cargo run --bin iota-localnet start --with-faucet --force-regenesis"
},
"dependencies": {
"@iota/iota-sdk": "workspace:*",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@iota/build-scripts": "workspace:*",
"cross-env": "^7.0.3",
"tmp": "^0.2.3",
"typescript": "^5.5.3",
"vitest": "^4.1.0",
"wait-on": "^8.0.1"
}
}