-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 940 Bytes
/
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
{
"name": "@im-coder-lg/streak-counter",
"version": "0.0.1-rc2",
"repository": {
"type": "git",
"url": "https://github.com/im-coder-lg/streak-counter"
},
"author": "LG <github.com/im-coder-lg>",
"license": "MIT License",
"type": "module",
"types":"./dist/index.d.ts",
"source": "src/index.ts",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"fmt": "prettier --write ."
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/jsdom": "^16.2.14",
"jest": "^27.5.1",
"jsdom": "^19.0.0",
"microbundle": "^0.14.2",
"prettier": "^2.6.0",
"ts-jest": "^27.1.3",
"typescript": "^4.6.0-beta"
}
}