-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
48 lines (48 loc) · 1.36 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
{
"name": "rollup-plugin-import-assert",
"version": "3.0.1",
"description": "A Rollup plugin to add import assertion behavior and syntax support",
"main": "dist/import-assert.js",
"module": "dist/import-assert.js",
"type": "module",
"exports": {
"require": "./dist/import-assert.cjs",
"import": "./dist/import-assert.js"
},
"scripts": {
"build": "tsc && rollup -c rollup.config.js",
"postrelease": "git push --follow-tags origin main && npm publish",
"prepack": "npm run build",
"release": "standard-version",
"start": "rollup -c rollup.dev.esm.config.js",
"start:cjs": "rollup -c rollup.dev.cjs.config.js"
},
"keywords": [
"Rollup",
"constructible stylesheets",
"json",
"css",
"web components",
"acorn"
],
"author": "Caleb D. Williams <[email protected]>",
"repository": "github:calebdwilliams/rollup-plugin-import-assert",
"license": "MIT",
"dependencies": {
"string-to-template-literal": "^2.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^23.0.7",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/node": "^18.11.17",
"acorn-import-assertions": "^1.8.0",
"ava": "^5.1.0",
"rollup": "^3.7.5",
"standard-version": "^9.5.0",
"typescript": "^4.9.4"
},
"peerDependencies": {
"acorn-import-assertions": "^1.8.0",
"rollup": "^3.0.0"
}
}