-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.88 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
{
"name": "preact-jss-tiny",
"version": "1.0.0-alpha.9",
"main": "dist/preact-jss-tiny.js",
"module": "dist/preact-jss-tiny.esm.js",
"typings": "dist/index.d.ts",
"license": "MIT",
"author": "half-halt-farm@outlook.com",
"description": "A small version of JSS for preact, loosely based on react-jss",
"repository": {
"type": "git",
"url": "https://github.com/half-halt/preact-jss.git"
},
"files": [
"dist/preact-jss-tiny.*",
"dist/index.d.ts",
"dist/JssProvider.d.ts",
"dist/JssThemeProvider.d.ts",
"dist/createUseStyles.d.ts"
],
"devDependencies": {
"@rollup/plugin-html": "^0.2.3",
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-strip": "^2.0.0",
"@rollup/plugin-typescript": "^8.2.0",
"jss": "^10.5.1",
"npm-run-all": "^4.1.5",
"preact": "^10.5.12",
"rollup": "^2.40.0",
"rollup-copy-plugin": "^0.1.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-inject-process-env": "^1.3.1",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.1.0",
"typescript": "^4.2.3"
},
"peerDependencies": {
"jss": "^10.5.1",
"jss-preset-default": "^10.5.1",
"preact": "^10.5.12"
},
"scripts": {
"clean": "rm -rf dist",
"build:dev": "yarn rollup -c rollup.config.js --configDebug --watch",
"build:rel": "yarn rollup -c rollup.config.js",
"build:types": "yarn tsc -p tsconfig.json --emitDeclarationOnly --declaration",
"build": "yarn run-s clean build:types build:rel",
"test": "jest",
"test:watch": "jest --watchAll"
}
}