-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
{
"name": "@strategies/notification",
"repository": "https://github.com/sasakiassociates/notification",
"version": "1.0.2",
"description": "Pure JS notifications",
"author": "Eric Youngberg <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"engines": {
"node": ">=16",
"npm": ">=8"
},
"scripts": {
"type:watch": "tsc --watch --emitDeclarationOnly",
"type": "tsc --emitDeclarationOnly",
"build": "npm run type && npx rollup -c",
"start": "npm run type:watch | npx rollup -c -w"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.3.0",
"postcss": "^8.4.14",
"rollup": "^2.59.0",
"rollup-plugin-postcss": "^4.0.2",
"sass": "^1.53.0",
"tslib": "^2.4.0",
"typescript": "^4.4.4"
},
"dependencies": {
"@strategies/tokens": "^1.4.0"
}
}