|
1 | 1 | { |
2 | | - "name": "ton-connect-qa", |
| 2 | + "name": "@tonconnect/qa", |
3 | 3 | "version": "1.0.0-alpha.0", |
4 | 4 | "license": "MIT", |
5 | 5 | "type": "module", |
| 6 | + "exports": { |
| 7 | + "types": "./types/index.d.ts", |
| 8 | + "default": "./dist/index.js" |
| 9 | + }, |
| 10 | + "main": "./dist/index.js", |
| 11 | + "types": "./types/index.d.ts", |
| 12 | + "files": [ |
| 13 | + "README.md", |
| 14 | + "changelog.md", |
| 15 | + "contributing.md", |
| 16 | + "qa", |
| 17 | + "types", |
| 18 | + "dist" |
| 19 | + ], |
6 | 20 | "scripts": { |
| 21 | + "build": "rm -fr dist && tsc --declaration --project tsconfig-release.json --outDir dist", |
| 22 | + "release": "pnpm build && pnpm lint && pnpm test && pnpm release-it", |
7 | 23 | "test": "npx bddgen && npx playwright test", |
8 | 24 | "tonkeeper": "npx playwright test --config playwright-test.config.ts", |
9 | 25 | "watch:bdd": "nodemon -w ./features -w ./steps -e feature,js,ts --exec \"npx bddgen\"", |
|
13 | 29 | "format": "prettier --write test qa steps features *.ts", |
14 | 30 | "report": "npx http-server ./qa-report -c-1 -o index.html" |
15 | 31 | }, |
| 32 | + "publishConfig": { |
| 33 | + "access": "public", |
| 34 | + "registry": "https://registry.npmjs.org/" |
| 35 | + }, |
| 36 | + "release-it": { |
| 37 | + "github": { |
| 38 | + "release": true |
| 39 | + }, |
| 40 | + "plugins": { |
| 41 | + "@release-it/keep-a-changelog": { |
| 42 | + "filename": "changelog.md" |
| 43 | + } |
| 44 | + } |
| 45 | + }, |
16 | 46 | "prettier": { |
17 | 47 | "tabWidth": 2, |
18 | 48 | "useTabs": false, |
|
27 | 57 | }, |
28 | 58 | "devDependencies": { |
29 | 59 | "@playwright/test": "^1.50.0", |
| 60 | + "@release-it/keep-a-changelog": "^7.0.0", |
30 | 61 | "@synthetixio/synpress": "^4.0.7", |
31 | 62 | "@synthetixio/synpress-cache": "^0.0.7", |
32 | 63 | "@synthetixio/synpress-tsconfig": "^0.0.8", |
|
42 | 73 | "playwright-bdd": "^8.1.0", |
43 | 74 | "prettier": "3.4.2", |
44 | 75 | "prettier-plugin-gherkin": "^3.1.1", |
| 76 | + "release-it": "^19.0.1", |
45 | 77 | "typescript": "^5.7.2" |
46 | 78 | }, |
47 | 79 | "dependencies": { |
|
0 commit comments