Skip to content

Commit

Permalink
fix: add typescript as a direct dependency (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
metonym authored May 10, 2021
1 parent 3c468eb commit a738fb4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
"build:api:icons": "ts-node src/build/build-icons",
"build:api:pictograms": "ts-node src/build/build-pictograms",
"build:lib": "run-p build:lib:*",
"build:lib:cjs": "esbuild src/index.ts --bundle --platform=node --target=node10.4 --external:purgecss --external:svelte-preprocess --outfile=dist/index.js",
"build:lib:esm": "esbuild src/index.ts --bundle --platform=node --target=es6 --format=esm --external:purgecss --external:svelte-preprocess --outfile=dist/index.mjs",
"build:lib:cjs": "esbuild src/index.ts --bundle --platform=node --target=node10.4 --external:purgecss --external:svelte-preprocess --external:typescript --outfile=dist/index.js",
"build:lib:esm": "esbuild src/index.ts --bundle --platform=node --target=es6 --format=esm --external:purgecss --external:svelte-preprocess --external:typescript --outfile=dist/index.mjs",
"build:lib:types": "tsc",
"prepack": "run-s build:api build:lib",
"test": "run-p test:*",
Expand All @@ -31,7 +31,8 @@
},
"dependencies": {
"purgecss": "^4.0.3",
"svelte-preprocess": "^4.7.3"
"svelte-preprocess": "^4.7.3",
"typescript": "^4.2.4"
},
"devDependencies": {
"@carbon/elements": "10.31.0",
Expand All @@ -49,8 +50,7 @@
"rollup": "^2.47.0",
"svelte": "^3.38.2",
"totalist": "^2.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
"ts-node": "^9.1.1"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit a738fb4

Please sign in to comment.