-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Prepare no_dist version * Make getRandomInt public * Refactor getRandomInt * Update package.json
- Loading branch information
1 parent
e51060f
commit 5ae02ef
Showing
2 changed files
with
37 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,8 +23,41 @@ | |
"type": "git", | ||
"url": "[email protected]:Caleydo/tourdino.git" | ||
}, | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"main": "src/index.ts", | ||
"types": "src/index.ts", | ||
"exports": { | ||
".": { | ||
"types": [ | ||
"./dist/index.d.ts", | ||
"./src/index.ts" | ||
], | ||
"import": [ | ||
"./dist/index.js", | ||
"./src/index.ts" | ||
], | ||
"default": [ | ||
"./dist/index.js", | ||
"./src/index.ts" | ||
] | ||
}, | ||
"./phovea_registry": [ | ||
"./dist/phovea_registry.js", | ||
"./src/phovea_registry.ts" | ||
], | ||
"./dist/phovea_registry": [ | ||
"./dist/phovea_registry.js", | ||
"./src/phovea_registry.ts" | ||
], | ||
"./src/scss/*": [ | ||
"./dist/scss/*", | ||
"./src/scss/*" | ||
], | ||
"./dist/scss/*": [ | ||
"./dist/scss/*", | ||
"./src/scss/*" | ||
], | ||
"./package.json": "./package.json" | ||
}, | ||
"files": [ | ||
"src", | ||
"dist" | ||
|
@@ -48,7 +81,6 @@ | |
"docs": "visyn_scripts docs", | ||
"lint:fix": "visyn_scripts lint --fix", | ||
"lint": "visyn_scripts lint", | ||
"prepack": "npm run build", | ||
"start": "visyn_scripts start --env workspace_mode=single", | ||
"storybook:build": "NODE_OPTIONS=--max_old_space_size=4096 build-storybook", | ||
"storybook": "NODE_OPTIONS=--max_old_space_size=4096 start-storybook -p 6006", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters