-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.79 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@marekzelinka/streak-counter",
"version": "1.0.2",
"type": "module",
"files": [
"dist"
],
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.mjs",
"types": "./dist/cjs/index.d.ts",
"exports": {
"import": {
"types": "./dist/es/index.d.ts",
"default": "./dist/es/index.js"
},
"require": {
"types": "./dist/cjs/index.d.cts",
"default": "./dist/cjs/index.cjs"
}
},
"scripts": {
"build": "bunchee",
"dev": "vitest",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"check-exports": "attw --pack .",
"format": "prettier --write .",
"check-format": "prettier --check .",
"ci": "pnpm build && pnpm run check-format && pnpm run check-exports && pnpm run test",
"local-release": "changeset version && changeset publish",
"prepublishOnly": "pnpm run ci"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.0",
"@changesets/cli": "^2.27.10",
"@types/jsdom": "^21.1.7",
"@vitest/coverage-v8": "^2.1.8",
"bunchee": "^6.0.0",
"jsdom": "^24.1.3",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"description": "a streak counter inspired by Duolingo",
"keywords": [
"streak-counter"
],
"homepage": "https://github.com/marekzelinka/streak-counter",
"bugs": {
"url": "https://github.com/marekzelinka/streak-counter/issues"
},
"author": "Marek Zelinka <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/marekzelinka/streak-counter.git"
},
"license": "MIT",
"packageManager": "[email protected]+sha512.c8180b3fbe4e4bca02c94234717896b5529740a6cbadf19fa78254270403ea2f27d4e1d46a08a0f56c89b63dc8ebfd3ee53326da720273794e6200fcf0d184ab"
}